home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Technotools
/
Technotools (Chestnut CD-ROM)(1993).ISO
/
misc_pto
/
basic-c
/
test6.bas
< prev
next >
Wrap
BASIC Source File
|
1988-12-20
|
706b
|
33 lines
rem ********************************************
rem ************** TEST PROGRAM ****************
rem ********************************************
cls
move 0 0
input "press enter to begin", y
rem ***** draw screen box *****
gosub 100
move 23 21
input " [ press enter to end test program ] ", y
end
rem ****************************************************
rem ********** subroutine for boxing screen ************
rem ****************************************************
100 rem draw both horizontals
rem
for x = 0 to 79
move 0 x
print "-";
move 23 x
print "-";
next
rem
rem draw both verticals
rem
for y = 0 to 23
move y 0
print "|";
move y 79
print "|";
next
return